5f4f51af4849901ed0851bd868ffed888d31c9cb,java/java-impl/src/com/intellij/codeInsight/completion/JavaCompletionData.java,JavaCompletionData,fillCompletions,#CompletionParameters#CompletionResultSet#,454

Before Change


    }
    if (statement != null && statement.getTextRange().getStartOffset() == position.getTextRange().getStartOffset()) {
      if (!psiElement().withSuperParent(2, PsiSwitchStatement.class).accepts(statement)) {
        result.addElement(createKeyword(position, PsiKeyword.FINAL));
      }
    }
    

After Change


    }
    if (statement != null && statement.getTextRange().getStartOffset() == position.getTextRange().getStartOffset()) {
      if (!psiElement().withSuperParent(2, PsiSwitchStatement.class).accepts(statement)) {
        result.addElement(new OverrideableSpace(createKeyword(position, PsiKeyword.FINAL), TailType.SPACE));
      }
    }